home *** CD-ROM | disk | FTP | other *** search
- /*=====[ The TesSeRact(TM) CXL User Interface Development System ]======*
- | Copyright (c) 1987-1990, Innovative Data Concepts. All Rights Reserved
- |
- | This Library is part of IDC's TesSeRact Development Tools product
- | line. For information about other IDC products, call 1-215-884-3373.
- *----------------------------------------------------------------------*
- | <TCXL_tc.h> : Internal Turbo C/C++ compiler-specific definitions.
- *-------------------------------[ NOTES ]------------------------------*
- | 1) Turbo C 2.0 or Turbo C++ 1.0 or later is required for TCXL.
- | 2) This file is automatically included by <TCXLdef.h> if the global
- | __TURBOC__ symbol is defined.
- *----------------------------------------------------------------------*
- | PGS : $Id: tcxl_tc.h 5.51 90/10/01 00:00:00 MLM Release Locker: MLM $
- | $Log: tcxl_tc.h $
- | Revision 5.51 90/10/01 00:00:00 MLM
- | TCXL 5.51
- |
- *======================================================================*/
- #ifndef _TCXL_cc_ /* only one compiler */
- # define _TCXL_cc_ 1 /* Borland Turbo C/C++ */
- # if __STDC__
- # error TCXL requires extensions to the ANSI standard
- # else
- # define CDC cdecl
- # define PAS pascal
- # define NEAR near
- # define FAR far
- # endif
- # ifndef NULL
- # if defined(__TINY__) || defined(__SMALL__) || defined(__MEDIUM__)
- # define NULL 0
- # else
- # define NULL 0L
- # endif
- # endif
- #endif /* _TCXL_cc_ : End of <TCXL_tc.h> */